home *** CD-ROM | disk | FTP | other *** search
- module oTextPlugin is cPlugin
- has
- release Editor:
- GetIO()
- do
- result := oIOTextPlugin;
- end;
- end;
- end;
-
- release Editor:
-
- object oIOTextLabel is "Text";
-
- object oIOTextPlugin is cIOPlugin
- with
- AboutDialog is cUIAboutPluginDialog
- with
- HelpURL is "Text/index.htm";
- Label is oIOTextLabel;
- Text is "Field and Text elements, events and commands.";
- end;
- ToolLines is [
- cIOToolListLine
- with
- Expanded is true;
- Label is oIOTextLabel;
- Lines is [
- cIOToolLine
- with
- Words is [
- oFieldCreator
- ];
- end
- ];
- end
- ];
- ElementLines is [
- cIOSeedListLine
- with
- Label is oIOTextLabel;
- Lines is [
- cIOSeedLine with IO is oIOField; end,
- cIOSeedLine with IO is oIORTFText; end
- ];
- end
- ];
- EventLines is [
- cIOSeedListLine
- with
- Label is oIOTextLabel;
- Lines is [
- cIOSeedLine with IO is oIOHotTextEvent; end
- ];
- end
- ];
- CommandLines is [
- cIOSeedListLine
- with
- Label is oIOTextLabel;
- Lines is [
- cIOSeedLine with IO is oIOEditFieldCommand; end,
- cIOSeedLine with IO is oIOFieldTextCommand; end,
- cIOSeedLine with IO is oIOFieldCookieCommand; end
- ];
- end
- ];
- Openers is [
- oRTFTextOpener
- ];
- end;
-
- end;
-